Thu May 16 15:17:30 2002 Owen Taylor <otaylor@redhat.com>
* pixops/pixops.c: Patch from Matthias Clasen to fix some typos
(#77246)
+Thu May 16 15:17:30 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pixops/pixops.c: Patch from Matthias Clasen to fix some typos
+ (#77246)
+
Thu May 16 15:02:46 2002 Owen Taylor <otaylor@redhat.com>
* gdk-pixdata.c (gdk_pixdata_to_csource): Fix 64-bit warning.
b += ta * q0[6];
a += ta;
- ta = w3 * q0[3];
- r += ta * q0[0];
- g += ta * q0[1];
- b += ta * q0[2];
+ ta = w3 * q1[3];
+ r += ta * q1[0];
+ g += ta * q1[1];
+ b += ta * q1[2];
a += ta;
- ta += w4 * q1[7];
+ ta = w4 * q1[7];
r += ta * q1[4];
g += ta * q1[5];
b += ta * q1[6];
g += w3 * q1[1];
b += w3 * q1[2];
- r += w4 * q1[4];
- g += w4 * q1[5];
- b += w4 * q1[6];
+ r += w4 * q1[3];
+ g += w4 * q1[4];
+ b += w4 * q1[5];
dest[0] = (r + 0x8000) >> 16;
dest[1] = (g + 0x8000) >> 16;
dest[2] = (b + 0x8000) >> 16;
dest += 3;
-
x += x_step;
}